summaryrefslogtreecommitdiff
path: root/ui/routes/(app)/ch/[channel]/+page.svelte
blob: 74ad28b53bfafa370ad6557d7ba74b9956841608 (plain)
1
2
3
4
5
6
7
8
9
10
<script>
	import { page } from '$app/stores';
	import ActiveChannel from '$lib/components/ActiveChannel.svelte';

	$: channel = $page?.params?.channel;
</script>

<div class="active-channel">
	<ActiveChannel {channel} />
</div>